home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / bench / x.txt / 000257_fdc@columbia.edu_Thu Dec 27 11:06:11 EST 2001.msg < prev    next >
Text File  |  2020-01-01  |  3KB  |  75 lines

  1. Article: 13087 of comp.protocols.kermit.misc
  2. Path: newsmaster.cc.columbia.edu!news.columbia.edu!news-not-for-mail
  3. From: fdc@columbia.edu (Frank da Cruz)
  4. Newsgroups: comp.protocols.kermit.misc
  5. Subject: Re: Using multiple kermits in series between machines
  6. Date: 27 Dec 2001 11:05:54 -0500
  7. Organization: Columbia University
  8. Lines: 58
  9. Message-ID: <a0fgt2$9ep$1@watsol.cc.columbia.edu>
  10. References: <1009447151.415636@irys.nyx.net>
  11. NNTP-Posting-Host: watsol.cc.columbia.edu
  12. X-Trace: newsmaster.cc.columbia.edu 1009469155 28141 128.59.39.139 (27 Dec 2001 16:05:55 GMT)
  13. X-Complaints-To: postmaster@columbia.edu
  14. NNTP-Posting-Date: 27 Dec 2001 16:05:55 GMT
  15. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:13087
  16.  
  17. In article <1009447151.415636@irys.nyx.net>,
  18. Henry van Cleef <hvanclee@nyx10.nyx.net> wrote:
  19. : I have the final release of Kermit 8 200, and am building it to
  20. : install on several machines.  I'm doing some remote administration
  21. : over a plain telephone modem connection to a remote console port,
  22. : using a modem server machine, and have tried using kermit to telnet
  23. : from my main development machine to the modem server, another kermit
  24. : to connect to the console port, and kermit at the other end to receive
  25. : executables.  
  26. : The configuration looks like this:
  27. : Dev machine->telnet kermit->modem server->remote console
  28. : machine->kermit server.  
  29. : Trying to send from the development machine to the server gets tied in
  30. : knots---appears that transmission set up as TCP/IP from the source
  31. : won't go down the phone line as packets.  I shut off streaming at both
  32. : ends, but it still fails.  
  33. There's a section in "Using C-Kermit" called C-Kermit in the Middle
  34. (pages 162-164), which explains how to make the intermediate Kermit
  35. transparent to all 8-bit byte patterns.  In C-Kermit 7.0 we added a
  36. command-line option, -0 (digit zero) for this:
  37.  
  38.   http://www.columbia.edu/kermit/ckermit70.html#x9.3
  39.   
  40. Quoting:
  41.  
  42.  -0 (digit zero) means "be 100% transparent in CONNECT mode". This is
  43.     equivalent to the following series of commands:
  44.     SET PARITY NONE
  45.     SET COMMAND BYTESIZE 8
  46.     SET TERMINAL BYTESIZE 8
  47.     SET FLOW NONE
  48.     SET TERM ESCAPE DISABLED
  49.     SET TERM CHAR TRANSPARENT
  50.     SET TERM AUTODOWNLOAD OFF
  51.     SET TERM APC OFF
  52.     SET TELOPT KERMIT REFUSE REFUSE
  53.  
  54. SET FLOW NONE might need adjustment if a serial device is involved.
  55.  
  56. : While I can get around the problem by NFS mounting my development disk
  57. : area on the modem server, and using kermit from it in one jump from
  58. : two, I wonder how---if it is possible, to chain kermits together in
  59. : series.
  60. Use -0 or the commands listed above and, yes, since you have some non-reliable
  61. segments in the chain, also SET RELIABLE OFF (or SET STREAMING OFF).  For
  62. In case the terminal server is not transparent, also you might need:
  63.  
  64.     SET PREFIXING CAUTIOUS (or NONE)
  65.  
  66. Obviously a multihop connection like this will not have the bandwidth of
  67. a direct end-to-end connection.
  68.  
  69. - Frank
  70.